form p input {
    padding: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    display: block;
    margin-top: 20px;
    outline: none;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

form textarea {
    padding: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    display: block;
    width: 50%;
    padding-bottom: 218px;
    margin-top: 20px;
    outline: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    resize: none;

    border-radius: 15px;
    border: solid 2px #808080;
    box-shadow: #4830F0 0 0 4px;
    transition: 0.3s;
}

form textarea:focus {
    border-radius: 18px;
    box-shadow: #4830F0 0 0 14px;
}

form textarea:hover {
    box-shadow: #4830F0 0 0 8px;
}

form textarea::selection { color: #fff; }

form h1 { text-align: center; }

form button {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comment {
    margin-bottom: 30px;
    background-color: #3a3a3a;
    border-radius: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 10px;
}

.comments {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

form { text-align: center; }

.comment hr { width: 200px; }

.comment h3 {
    font-size: 23px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.message h3 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

h3 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.buttonC a {
    color: #fff;
    background-color: #624ee4;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    display: inline-block;
    border-radius: 10px;
    transition: 0.3s;
}

.buttonC a:hover {
    background-color: #4830F0;
    -webkit-box-shadow: 0px 0px 1px 2px rgba(212,212,212,1);
    -moz-box-shadow: 0px 0px 1px 2px rgba(212,212,212,1);
    box-shadow: 0px 0px 1px 2px rgba(212,212,212,1);
}

.buttonsC {
    justify-content: center;
    margin-top: 20px;
    display: flex;
    margin-bottom: 30px;
}

#entercommentNL h2 {
    margin-top: 30px;
    width: auto;
}

@media (max-width: 600px) {
    form textarea {
        width: 80%;
    }
}

@media (max-width: 800px) {
    form p input {
        width: 90%;
    }
}
